Documents for PDF, .NET Edition Documentation
StructAction<T> Delegate

GrapeCity.Documents.Common Assembly > GrapeCity.Documents.Common Namespace : StructAction<T> Delegate
The type of the parameter of the method that this delegate encapsulates.
The parameter of the method that this delegate encapsulates.
Encapsulates a method that has a single parameter (passed by reference) and does not return a value.
Syntax
'Declaration
 
Public Delegate Sub StructAction(Of T As {New, Struct})( _
   ByRef item As T _
) 
public delegate void StructAction<T>( 
   ref T item
)
where T: new(), struct

Parameters

item
The parameter of the method that this delegate encapsulates.

Type Parameters

T
The type of the parameter of the method that this delegate encapsulates.
See Also

Reference

StructAction<T> Members
GrapeCity.Documents.Common Namespace